Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The 'events' npm package provides a way to implement the Observer pattern, which is a software design pattern that allows an object (known as a 'subject') to maintain a list of its dependents (known as 'observers') and automatically notify them of any state changes, usually by calling one of their methods. It is the same EventEmitters API as used by Node.js core.
EventEmitter creation
This code sample shows how to import the 'events' package and create a new instance of an EventEmitter.
const EventEmitter = require('events');
const myEmitter = new EventEmitter();
Event listening
This code sample demonstrates how to listen for an 'event' and execute a callback function when the event is emitted.
myEmitter.on('event', () => {
console.log('an event occurred!');
});
Event emitting
This code sample shows how to emit an 'event', which will trigger any associated event listeners.
myEmitter.emit('event');
Once listener
This code sample demonstrates how to set up a listener that will only be called once for the next time the event is emitted.
myEmitter.once('event', () => {
console.log('this event will be logged only once');
});
Removing listeners
This code sample shows how to remove a specific listener from an event.
const callback = () => console.log('event occurred');
myEmitter.on('event', callback);
// ...
myEmitter.removeListener('event', callback);
Mitt is a tiny functional event emitter / pubsub. It provides the same basic functionality as 'events' but with a smaller footprint and a more functional approach.
EventEmitter3 is a high performance EventEmitter. It has a similar API to 'events' but is optimized for performance and has no dependencies.
Wolfy87's EventEmitter is an implementation of the EventEmitter module found in Node.js but for the browser. It offers similar functionality to 'events' but is designed to work in a browser environment.
Node's event emitter for all engines.
npm install events
var EventEmitter = require('events').EventEmitter
See the node.js event emitter docs
1.1.1 (2016-06-22)
FAQs
Node's event emitter for all engines.
The npm package events receives a total of 31,694,984 weekly downloads. As such, events popularity was classified as popular.
We found that events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.